home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / glass / glass.lha / GLASS / widgets / Label.h < prev    next >
C/C++ Source or Header  |  1991-02-01  |  3KB  |  95 lines

  1. /*
  2.  * $XConsortium: Label.h,v 1.24 89/07/21 01:48:51 kit Exp $
  3.  */
  4.  
  5. /***********************************************************
  6. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
  7. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  8.  
  9.                         All Rights Reserved
  10.  
  11. Permission to use, copy, modify, and distribute this software and its 
  12. documentation for any purpose and without fee is hereby granted, 
  13. provided that the above copyright notice appear in all copies and that
  14. both that copyright notice and this permission notice appear in 
  15. supporting documentation, and that the names of Digital or MIT not be
  16. used in advertising or publicity pertaining to distribution of the
  17. software without specific, written prior permission.  
  18.  
  19. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  20. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  21. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  22. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  23. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  24. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  25. SOFTWARE.
  26.  
  27. ******************************************************************/
  28.  
  29. #ifndef _XawLabel_h
  30. #define _XawLabel_h
  31.  
  32. /***********************************************************************
  33.  *
  34.  * Label Widget
  35.  * Adapted 9/1/90 by M.Seutter & J. van Krieken,
  36.  * to give proper appearance to text over background pixmaps
  37.  * and to give an immediate change to the window when changing
  38.  * the label while resize is false
  39.  *
  40.  ***********************************************************************/
  41.  
  42. #include <X11/Xaw/Simple.h>
  43. #include <X11/Xmu/Converters.h>
  44.  
  45. /* Resources:
  46.  
  47.  Name             Class        RepType        Default Value
  48.  ----             -----        -------        -------------
  49.  background         Background        Pixel        XtDefaultBackground
  50.  bitmap             Pixmap        Pixmap        None
  51.  border             BorderColor    Pixel        XtDefaultForeground
  52.  borderWidth         BorderWidth    Dimension    1
  53.  cursor             Cursor        Cursor        None
  54.  destroyCallback     Callback        XtCallbackList    NULL
  55.  font             Font        XFontStruct*    XtDefaultFont
  56.  foreground         Foreground        Pixel        XtDefaultForeground
  57.  height             Height        Dimension    text height
  58.  insensitiveBorder   Insensitive    Pixmap        Gray
  59.  internalHeight         Height        Dimension    2
  60.  internalWidth         Width        Dimension    4
  61.  justify         Justify        XtJustify    XtJustifyCenter
  62.  label             Label        String        NULL
  63.  imageText           Mode               Boolean         False
  64.  mappedWhenManaged   MappedWhenManaged    Boolean        True
  65.  resize             Resize        Boolean        True
  66.  sensitive         Sensitive        Boolean        True
  67.  width             Width        Dimension    text width
  68.  x             Position        Position    0
  69.  y             Position        Position    0
  70.  
  71. */
  72.  
  73. #define XtNbitmap "bitmap"
  74. #define XtNforeground "foreground"
  75. #define XtNlabel "label"
  76. #define XtNimageText "imageText"
  77. #define XtNfont "font"
  78. #define XtNinternalWidth "internalWidth"
  79. #define XtNinternalHeight "internalHeight"
  80. #define XtNresize "resize"
  81. #define XtCResize "Resize"
  82.  
  83. #define XtCBitmap "Bitmap"
  84. #define XtCMode "Mode"
  85.  
  86. /* Class record constants */
  87.  
  88. extern WidgetClass labelWidgetClass;
  89.  
  90. typedef struct _LabelClassRec *LabelWidgetClass;
  91. typedef struct _LabelRec      *LabelWidget;
  92.  
  93. #endif /* _XawLabel_h */
  94. /* DON'T ADD STUFF AFTER THIS #endif */
  95.